home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / FOLDERADD.DTML < prev    next >
Encoding:
Text File  |  2000-06-20  |  1.9 KB  |  74 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>Add Folder</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <H2>Add Folder</H2>
  8.  
  9. <dtml-var "HelpSys.HelpButton('Folder_Add.stx','OFSP')">
  10.  
  11. <P>
  12. A Folder contains other objects. Use Folders to organize your
  13. web objects in to logical groups.
  14. </P>
  15.  
  16. <P>
  17. The form below allows you to create
  18. a Folder. The <EM>Create public interface</EM> option creates
  19. an <EM>index_html</EM> DTML Method inside the Folder to give the
  20. Folder a default HTML representation. The <EM>Create user folder</EM>
  21. option creates a User Folder inside the Folder to hold authorization
  22. information for the Folder.
  23. </P>
  24.  
  25. <FORM ACTION="manage_addFolder" METHOD="POST">
  26. <TABLE CELLSPACING="2">
  27. <TR>
  28.   <TD ALIGN="LEFT" VALIGN="TOP">
  29.   <STRONG>Id</STRONG>
  30.   </TD>
  31.   <TD ALIGN="LEFT" VALIGN="TOP">
  32.   <INPUT TYPE="TEXT" NAME="id" SIZE="40">
  33.   </TD>
  34. </TR>
  35. <TR>
  36.   <TD ALIGN="LEFT" VALIGN="TOP">
  37.   <EM><STRONG>Title</STRONG></EM>
  38.   </TD>
  39.   <TD ALIGN="LEFT" VALIGN="TOP">
  40.   <INPUT TYPE="TEXT" NAME="title" SIZE="40">
  41.   </TD>
  42. </TR>
  43. <TR><TD COLSPAN="2"><BR></TD></TR>
  44.  
  45. <dtml-if "_.SecurityCheckPermission('Add Documents, Images, and Files',this())">
  46. <TR>
  47.  <TD ALIGN="TOP" COLSPAN="2">
  48. <INPUT TYPE="CHECKBOX" NAME="createPublic:int" VALUE="1" ID="cbCreatePublic">
  49.   <STRONG><LABEL FOR="cbCreatePublic">Create public interface</LABEL></STRONG>
  50.  </TD>
  51. </TR>
  52. </dtml-if>
  53.  
  54. <dtml-if "_.SecurityCheckPermission('Add User Folders',this())">
  55. <TR>
  56.  <TD ALIGN="TOP" COLSPAN="2">
  57. <INPUT TYPE="CHECKBOX" NAME="createUserF:int" VALUE="1" ID="cbCreateUserF">
  58.   <STRONG><LABEL FOR="cbCreateUserF">Create user folder</LABEL></STRONG>
  59.  </TD>
  60. </TR>
  61. </dtml-if>
  62.  
  63. <TR>
  64. <TD></TD>
  65. <TD>
  66. <BR><INPUT TYPE="SUBMIT" VALUE=" Add ">
  67. </TD>
  68. </TR>
  69. </TABLE>
  70. </FORM>
  71. </BODY>
  72. </HTML>
  73.  
  74.